home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / BBS / FM122.ZIP / SAMPLE.CFG < prev   
Encoding:
Text File  |  1996-03-02  |  2.7 KB  |  92 lines

  1. ; Sample FMOVE configuration file.
  2.  
  3. ; All commands must start in the first column. Any line starting with
  4. ; a space or ';' will be considered a comment.
  5.  
  6. ; Global Verbs
  7.  
  8. ; Days is used by the move command. If a file is older than "Days" then
  9. ; it will be moved. If newer than "Days" then it will be left alone.
  10.  
  11. Days 30
  12.  
  13. ; Keep descriptions in original file area when moving and killing files.
  14. ;
  15. KeepOrg No
  16. ;
  17. ; Remove descriptions of missing files.
  18. ;
  19. Remiss No
  20. ;
  21. Adopt No
  22. AdoptDesc '<Description not found>'
  23. ;
  24. ; This is the mode of operation. If you use FilesBBS you will have to
  25. ; specify full pathnames for the move and kill commands. Max3 mode will
  26. ; allow you to use area names instead of paths.
  27. ;
  28. BBS Max3
  29. ;BBS FilesBBS
  30. ;
  31. ; What BBS software are you using? The BBSPath command is required for
  32. ; Max3 support only. This is not required when using the FilesBBS support.
  33. ;
  34. BBSPath D:\MAX
  35. ;
  36. ; Path to your reindexing program, usually either FB.EXE or QFB.EXE.
  37. ; Currently any switches on this command will be ignored.
  38. ;
  39. Reindex d:\max\Qfb.exe
  40. ;
  41. ; ArcFile is used to archive description of killed files. This can be
  42. ; used so that when a file is restored from a backup, you still have
  43. ; the description that can be moved to files.bbs
  44. ;
  45. ArcFile d:\bbslogs\descr.log
  46. LogFile d:\bbslogs\fmove.log
  47. ;
  48. ; Scanner defines the virus scanner to use for the scanmove command.
  49. ; If this is not defined then it is assumed to be SCAN.EXE. If you do
  50. ; not define a scanner here then SCAN.EXE is assumed to be in your path.
  51. ; You may define up to three virus scanners.
  52. ;
  53. ; End of Global commands
  54. ;
  55. ; Action verbs
  56. ;
  57. ; Move is used to move files from one area to another. The first path
  58. ; listed is the source path, and the second path listed is the target
  59. ; path. There must be a files.bbs file in the source directory for this
  60. ; command to work. *** DO NOT PUT TRAILING '\' ON PATHS ***
  61. ;
  62. ; You can also put an age at the end of the move command line. If the
  63. ; number of days exists at the end of the move line then the global
  64. ; Days option is ignored.
  65. ;
  66. ; I use this to move files that have been virus scanned to a secure
  67. ; directory. If you want to move all files in the source directory make
  68. ; sure that you either omit the global verb "Days" or put "Days 0" in
  69. ; place of "Days 60" above.
  70. ;
  71. Exclude max301?.*
  72. Exclude Bw*.*
  73. ;
  74. Schedule Move
  75.  
  76. Move d:\files\uncheck d:\files\new   -d0
  77. Move d:\files\sdn     d:\file\oldsdn -d60
  78.  
  79. End Schedule
  80.  
  81. ; Kill is used to kill files in an area. Be careful with this one if
  82. ; you omit the number of days on this line then all files will be killed
  83. ; in the area specified.
  84.  
  85. Schedule Kill
  86.  
  87. ;Kill d:\files\oldsdn -d90
  88.  
  89. End Schedule
  90.  
  91. ; End of Sample configuration
  92.